home *** CD-ROM | disk | FTP | other *** search
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
- <xsl:output omit-xml-declaration="yes" />
-
- <xsl:template match="employees">
-
- <xsl:for-each select="employee">
-
- <xsl:if test="emp_salary[@currency = 'UKP']">
- <xsl:value-of select="@emp_no" />,<xsl:value-of select="emp_lastname" />,<xsl:value-of select="emp_firstname" />
-
- </xsl:if>
- </xsl:for-each>
-
- </xsl:template>
- </xsl:stylesheet>